home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-08-11 | 398 b | 13 lines | [TEXT/ScoM] |
- rotate-bc count sequence
-
- This function enables the generation of a number of symbol patterns emanating from the sequential backward rotation with count of a single pattern.
-
- (rotate-bc 5 '(a b c d e f g h i j k l))
-
- => ((a b c d e f g h i j k l)
- (l a b c d e f g h i j k)
- (k l a b c d e f g h i j)
- (j k l a b c d e f g h i)
- (i j k l a b c d e f g h)
- (h i j k l a b c d e f g))
-